home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / image / tsutlg11.zip / BACKDEMO.BAT next >
DOS Batch File  |  1995-12-09  |  1KB  |  44 lines

  1. @echo off
  2.  
  3. rem Check that backgrnd.exe is available
  4. set found_=
  5. for %%d in (%path%) do if exist %%d\backgrnd.exe set found_=true
  6. for %%d in (%path%) do if exist %%dbackgrnd.exe set found_=true
  7. if "%found_%"=="true" goto _label1
  8. echo backgrnd.exe must be at path
  9. goto _out
  10.  
  11. :_label1
  12. backgrnd /blink
  13. echo 
  14. cls
  15. echo ┌─────────────────────────────────────────────┐
  16. echo │ BACKDEMO.BAT High-intensity background demo │
  17. echo │ By prof. Timo Salmi Sat 9-December-1995     │
  18. echo └─────────────────────────────────────────────┘
  19. echo.
  20. echo You now should have a Yellow text on a Black background.
  21. echo If you don't, either your video adapter is not up to this, or
  22. echo you don't have the ansi.sys or a similar screen driver installed.
  23. echo 
  24. echo This text should be blinking.
  25. echo 
  26. pause
  27.  
  28. backgrnd /high
  29. echo 
  30. cls
  31. echo.
  32. echo You now should have a Yellow text on a LightGray background.
  33. echo If you don't, either your video adapter is not up to this, or
  34. echo you don't have the ansi.sys or a similar screen driver installed.
  35. echo.
  36. pause
  37.  
  38. echo 
  39. cls
  40. backgrnd
  41.  
  42. :_out
  43. set found_=
  44.